home *** CD-ROM | disk | FTP | other *** search
- {$A-,B-,D+,F-,G+,I-,K-,L+,N-,P-,Q-,R-,S-,T-,V+,W-,X+,Y+}
- {$M 8192,8192}
- unit lm_lgd;
-
- { Hinweis für C-Programmierer:
-
- Die Funktion LgdDefProc muß in der .DEF-Datei IMPORTiert werden.
-
- Prototyp (in einer .H-Datei):
-
- BOOL LgdDefProc (LPLONG lRet, HWND hWnd, WORD msg, WORD wParam, LONG lParam);
-
- }
- { Note for C programmers:
-
- IMPORT the LgdDefProc function in the .DEF-file.
-
- prototype for a .H file:
-
- BOOL LgdDefProc (LPLONG lRet, HWND hWnd, WORD msg, WORD wParam, LONG lParam);
-
- }
-
-
- interface
-
- uses WinTypes;
-
- Function LgdDefProc (var lRet:LongInt;
- window: hwnd;
- msg:word;
- wParam:word;
- lParam:LongInt): boolean;
-
- Function ThTickCount: LongInt;
-
- Function LgdAboutBox (window:hwnd; icon: hicon; pchName: PChar; pchCR: PChar;
- fFullVersion: boolean; iFactor: integer): integer;
-
- implementation
-
- Function LgdDefProc;
- external 'lm_util' index 11;
-
- Function ThTickCount: LongInt;
- external 'lm_util' index 14;
-
- Function LgdAboutBox (window:hwnd; icon: hicon; pchName: PChar; pchCR: PChar;
- fFullVersion: boolean; iFactor: integer): integer;
- external 'lm_util' index 15;
-
- end.
-